home *** CD-ROM | disk | FTP | other *** search
/ Apple WWDC 1996 / WWDC96_1996 (CD).toast / Technology Materials / MacApp Release 10 / MacApp Release 10 - HD Ready / Tools / DeleteObjects < prev    next >
Encoding:
Text File  |  1996-04-03  |  349 b   |  12 lines  |  [TEXT/MPS ]

  1. # DeleteObjects
  2. # Copyright © 1994-96 by Apple Computer, Inc. All rights reserved.
  3. #
  4. #    Delete the MacApp separate objects directories that are in a directory hierarchy. 
  5. #    Example:
  6. #        DeleteObjects "{MacApp}Examples:"
  7.  
  8. set exit 0
  9. for f in `files -f -d -r "{1}" | search /≈:{MASeparateObjectsPrefix}[¬:]+:∂'«0,1»∞/`
  10.     quote delete -y -ay -i "{f}"
  11. end
  12.